encoding/xml.fieldInfo.xmlns (field)

20 uses

	encoding/xml (current package)
		marshal.go#L484: 			start.Name.Space, start.Name.Local = xmlname.xmlns, xmlname.name
		marshal.go#L493: 		start.Name.Space, start.Name.Local = finfo.xmlns, finfo.name
		marshal.go#L523: 		name := Name{Space: finfo.xmlns, Local: finfo.name}
		marshal.go#L651: 		start.Name.Space = finfo.xmlns
		read.go#L429: 			if finfo.xmlns != "" && finfo.xmlns != start.Name.Space {
		read.go#L430: 				e := "expected element <" + finfo.name + "> in name space " + finfo.xmlns + " but have "
		read.go#L453: 					if a.Name.Local == finfo.name && (finfo.xmlns == "" || finfo.xmlns == a.Name.Space) {
		read.go#L680: 		if finfo.flags&fElement == 0 || len(finfo.parents) < len(parents) || finfo.xmlns != "" && finfo.xmlns != start.Name.Space {
		typeinfo.go#L24: 	xmlns   string
		typeinfo.go#L119: 		finfo.xmlns, tag = ns, t
		typeinfo.go#L173: 	if finfo.xmlns != "" && tag == "" {
		typeinfo.go#L191: 			finfo.xmlns, finfo.name = xmlname.xmlns, xmlname.name
		typeinfo.go#L277: 		if oldf.xmlns != "" && newf.xmlns != "" && oldf.xmlns != newf.xmlns {